753e667c2e7e33e60992dd999fccae1268e69e63,findbugs/src/java/edu/umd/cs/findbugs/workflow/UnionResults.java,UnionResults,main,#String[]#,56

Before Change


			results = union(results, more);
		}

		results.writeXML(System.out, new Project());
	}

After Change


		}

		results.setWithMessages(commandLine.withMessages);
		if (commandLine.outputFile == null)
			results.writeXML(System.out, project);
		else
			results.writeXML(commandLine.outputFile, project);
	}